class Student{
    String No;        //ѧ
    String Name;      //
    int Age;          //
    String Sex;       //Ա
    String Address;   //סַ
    String Email;     //ʼ
    String Phone;     //ϵ绰
    //ѧ󣬷װ
    public Student(String No,String Name,int Age,String Sex,String Address,String Email,String Phone){
        this.No=No;
        this.Name=Name;
        this.Age=Age;
        this.Sex=Sex;
        this.Address=Address;
        this.Email=Email;
        this.Phone=Phone;
    }
}
